home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / System / SCC Hack ƒ / InitMac.c next >
Encoding:
Text File  |  1989-06-07  |  217 b   |  15 lines  |  [TEXT/KAHL]

  1. /* Standard routines to initialize the Mac */
  2.  
  3.  
  4. InitMac()
  5. {
  6.     InitGraf(&thePort);
  7.     InitFonts();
  8.     FlushEvents( everyEvent, 0 );
  9.     InitWindows();
  10.     InitMenus();
  11.     TEInit();
  12.     InitDialogs(0L);
  13.     InitCursor();
  14.     MaxApplZone();
  15. }